home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / Form.h.z / Form.h
C/C++ Source or Header  |  2002-10-15  |  2KB  |  61 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /*   $XConsortium: Form.h /main/12 1995/07/14 10:34:46 drk $ */
  12. /*
  13. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  14. /*
  15. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  16. #ifndef _XmForm_h
  17. #define _XmForm_h
  18.  
  19.  
  20. #include <Xm/BulletinB.h>
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25.  
  26. /*  Form Widget  */
  27.  
  28. externalref WidgetClass xmFormWidgetClass;
  29.  
  30. typedef struct _XmFormClassRec * XmFormWidgetClass;
  31. typedef struct _XmFormRec      * XmFormWidget;
  32.  
  33.  
  34. /* ifndef for Fast Subclassing  */
  35.  
  36. #ifndef XmIsForm
  37. #define XmIsForm(w)    XtIsSubclass(w, xmFormWidgetClass)
  38. #endif  /* XmIsForm */
  39.  
  40. /********    Public Function Declarations    ********/
  41.  
  42. extern Widget XmCreateForm( 
  43.                         Widget parent,
  44.                         char *name,
  45.                         ArgList arglist,
  46.                         Cardinal argcount) ;
  47. extern Widget XmCreateFormDialog( 
  48.                         Widget parent,
  49.                         char *name,
  50.                         ArgList arglist,
  51.                         Cardinal argcount) ;
  52.  
  53. /********    End Public Function Declarations    ********/
  54.  
  55. #ifdef __cplusplus
  56. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  57. #endif
  58.  
  59. #endif /* _XmForm_h */
  60. /* DON'T ADD ANYTHING AFTER THIS #endif */
  61.